From: Roger Pau Monné Date: Wed, 4 May 2016 07:46:57 +0000 (+0200) Subject: xsplice: check against ELFOSABI_NONE instead of ELFOSABI_SYSV X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~1169 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=359cf73565bddafc8cba81fe91231be27d16b106;p=xen.git xsplice: check against ELFOSABI_NONE instead of ELFOSABI_SYSV They are equivalent, but using ELFOSABI_NONE is more correct in this context. Suggested-by: Jan Beulich Signed-off-by: Roger Pau Monné Reviewed-by: Andrew Cooper --- diff --git a/xen/common/xsplice_elf.c b/xen/common/xsplice_elf.c index e403a0ef45..1e1f167dba 100644 --- a/xen/common/xsplice_elf.c +++ b/xen/common/xsplice_elf.c @@ -397,7 +397,7 @@ static int xsplice_header_check(const struct xsplice_elf *elf) if ( hdr->e_version != EV_CURRENT || hdr->e_ident[EI_VERSION] != EV_CURRENT || hdr->e_ident[EI_ABIVERSION] != 0 || - hdr->e_ident[EI_OSABI] != ELFOSABI_SYSV || + hdr->e_ident[EI_OSABI] != ELFOSABI_NONE || hdr->e_type != ET_REL || hdr->e_phnum != 0 ) { diff --git a/xen/include/xen/elfstructs.h b/xen/include/xen/elfstructs.h index 615eb0696e..68954b03ab 100644 --- a/xen/include/xen/elfstructs.h +++ b/xen/include/xen/elfstructs.h @@ -81,6 +81,7 @@ typedef uint64_t Elf64_Xword; /* e_ident[] Operating System/ABI */ #define ELFOSABI_SYSV 0 /* UNIX System V ABI */ +#define ELFOSABI_NONE 0 /* Same as ELFOSABI_SYSV */ #define ELFOSABI_HPUX 1 /* HP-UX operating system */ #define ELFOSABI_NETBSD 2 /* NetBSD */ #define ELFOSABI_LINUX 3 /* GNU/Linux */